Tables [dbo].[SystemRef]
Properties
PropertyValue
Created10:31:40 AM Tuesday, March 02, 2010
Last Modified11:40:08 AM Monday, February 20, 2012
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_SystemRef: SystemKeywordSystemKeywordnvarchar(25)50
No
SystemNamenvarchar(50)100
No
SystemDescriptionnvarchar(250)500
No
Indexes AK_SystemRef_SystemKey: SystemKeySystemKeyuniqueidentifier16
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_SystemRef: SystemKeywordPK_SystemRefSystemKeyword
Yes
AK_SystemRef_SystemKeySystemKey
Yes
SQL Script
CREATE TABLE [dbo].[SystemRef]
(
[SystemKeyword] [nvarchar] (25) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[SystemName] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[SystemDescription] [nvarchar] (250) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[SystemKey] [uniqueidentifier] NOT NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[SystemRef] ADD CONSTRAINT [PK_SystemRef] PRIMARY KEY CLUSTERED ([SystemKeyword]) ON [PRIMARY]
GO
CREATE UNIQUE NONCLUSTERED INDEX [AK_SystemRef_SystemKey] ON [dbo].[SystemRef] ([SystemKey]) ON [PRIMARY]
GO
Uses
Used By